home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2002 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: ListForm
- @Method: getListTable()~returns the ListTable object in this form.
- @Syntax: listform.getListTable()
- @Summary: getListTable()~returns the ListTable object
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("listform.getListTable();", selection);
- editor.setActive("Insert listform.getListTable");
- }
- }
-
- !!/Script